ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / FlexGridBase<T> Class / OnClientRowAdded Property






In This Topic
    OnClientRowAdded Property
    In This Topic
    Occurs when the user creates a new item by editing the new row template (see the allowAddNew property).
    Syntax
    'Declaration
     
    
    Public Overridable Property OnClientRowAdded As System.String
    'Usage
     
    
    Dim instance As FlexGridBase(Of T)
    Dim value As System.String
     
    instance.OnClientRowAdded = value
     
    value = instance.OnClientRowAdded
    public virtual System.string OnClientRowAdded {get; set;}
    public read-write property OnClientRowAdded: System.String; virtual; 
    public function get,set OnClientRowAdded : System.String
    public: __property virtual System.string* get_OnClientRowAdded();
    public: __property virtual void set_OnClientRowAdded( 
       System.string* value
    );
    public:
    virtual property System.String^ OnClientRowAdded {
       System.String^ get();
       void set (    System.String^ value);
    }
    Remarks
    The event handler may customize the content of the new item or cancel the new item creation.
    See Also